Plot the collaborations on articles of the EUt+ universities

Romain THOMAS 2024

Import the library

[1]:
from openalex_analysis.plot import InstitutionsPlot

Create the collaborations DataFrame

[2]:
year = "2023"

entities_from = [
                     "I163151358",  # Cyprus University of Technology
                     "I107257983",  # Darmstadt University of Applied Sciences
                     "I201787326",  # Riga Technical University
                     "I4210144925", # Technological University Dublin
                     "I31151848",   # Technical University of Sofia
                     "I3123212020", # Universidad Politécnica de Cartagena
                     "I140494188",  # University of Technology of Troyes
                     "I158333966",  # Technical University of Cluj-Napoca
                     "I186995768",  # University of Cassino and Southern Lazio
                     ]

iplt = InstitutionsPlot()

iplt.get_collaborations_with_institutions(entities_from = entities_from,
                                          year = year,
                                         )
Getting entities_from metadata: 100%|██████████| 9/9 [00:03<00:00,  2.56it/s]
100%|██████████| 931/931 [00:14<00:00, 63.60it/s]
100%|██████████| 214/214 [00:03<00:00, 55.72it/s]
100%|██████████| 532/532 [00:08<00:00, 59.38it/s]
100%|██████████| 976/976 [00:15<00:00, 63.94it/s]
100%|██████████| 252/252 [00:04<00:00, 59.23it/s]
100%|██████████| 610/610 [00:09<00:00, 61.23it/s]
100%|██████████| 278/278 [00:04<00:00, 57.09it/s]
100%|██████████| 485/485 [00:07<00:00, 63.07it/s]
100%|██████████| 595/595 [00:09<00:00, 64.29it/s]
[2]:
name id lat lon country id_from name_from count link_to_works
0 University of Cyprus I34771391 35.175310 33.364200 Cyprus I163151358 Cyprus University of Technology 71 https://explore.openalex.org/works?filter=auth...
1 University of Nicosia I17389662 35.175310 33.364200 Cyprus I163151358 Cyprus University of Technology 33 https://explore.openalex.org/works?filter=auth...
2 Aristotle University of Thessaloniki I21370196 40.643610 22.930860 Greece I163151358 Cyprus University of Technology 28 https://explore.openalex.org/works?filter=auth...
3 National and Kapodistrian University of Athens I200777214 37.968266 23.778343 Greece I163151358 Cyprus University of Technology 26 https://explore.openalex.org/works?filter=auth...
4 European University Cyprus I201118511 35.161213 33.338910 Cyprus I163151358 Cyprus University of Technology 20 https://explore.openalex.org/works?filter=auth...
... ... ... ... ... ... ... ... ... ...
4868 Eötvös Loránd University I106118109 47.498350 19.040450 Hungary I186995768 University of Cassino and Southern Lazio 1 https://explore.openalex.org/works?filter=auth...
4869 Public Health Scotland I4210117886 55.931454 -3.294274 United Kingdom I186995768 University of Cassino and Southern Lazio 1 https://explore.openalex.org/works?filter=auth...
4870 Nokia (Finland) I2738502077 60.205200 24.652200 Finland I186995768 University of Cassino and Southern Lazio 1 https://explore.openalex.org/works?filter=auth...
4871 Centre Paul Albert-Février I4210099532 43.527977 5.418276 France I186995768 University of Cassino and Southern Lazio 1 https://explore.openalex.org/works?filter=auth...
4872 RIKEN Center for Advanced Intelligence Project I4210126580 35.683475 139.774500 Japan I186995768 University of Cassino and Southern Lazio 1 https://explore.openalex.org/works?filter=auth...

4873 rows × 9 columns

Plot

[3]:
iplt.get_figure_collaborations_with_institutions()